home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 03 / 8 / DISK0386.ZIP / TECO.ARC / NEXT.C < prev    next >
C/C++ Source or Header  |  1986-07-15  |  303b  |  14 lines

  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. next() /* Search file for (alt terminated) string */
  5. {
  6. #include "teco.h"
  7.  
  8.     while (bufptr) {            /* Scan thru file */
  9.         search();            /*  ... scan page */
  10.         if (bufptx) break;        /* Found the item */
  11.         page();                /*  ... next page */
  12.     }
  13. }
  14.